/*
* LESS Mixins
*/
ul {
  padding: 0%;
  margin: 0%;
}
.positionSticky {
  position: -webkit-sticky;
  position: sticky;
}
.disableSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.textBackground {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.centerX {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.centerY {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.centerXY {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
* Flexbox
*/
.displayFlex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/*
* Grid
*/
.displayGrid {
  display: -ms-grid;
  display: grid;
}
.displayInlineGrid {
  display: inline-grid;
}
/*
* Mixins
* imported from: https://codepen.io/fcfett/pen/odPzPX
*/

ul.cards {
  position: relative;
  overflow: hidden;
  list-style: none;
  width: 100%;
  height: 80%;
  padding: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  font-family: "Gochi Hand", cursive;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  /* -webkit-justify-content: center; */
  /* justify-content: center; */
  background: #fff;
  /* background: -webkit-linear-gradient(top left, #fff, #f0f0ea);
  background: -o-linear-gradient(top left, #fff, #f0f0ea);
  background: -moz-linear-gradient(top left, #fff, #f0f0ea);
  background: linear-gradient(top left, #fff, #f0f0ea); */
  /* -moz-box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.15); */
}
ul.cards li:nth-child(2) {
  margin-left: 200px;
}
ul.cards li:nth-child(3) {
  margin-left: 400px;
}
ul.cards li:nth-child(4) {
  margin-left: 500px;
}
ul.cards li {
  position: absolute;
  /* width: 100%;
  height: calc(100%-40px); */
  /* max-width: 100%;
  max-height: 100%; */
  left: 20%;
  padding: 15px 15px 0px;
  z-index: 3;
  opacity: 0;
  color: #444;
  text-align: center;
  font-weight: 900;
  font-size: 2em;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  align-items: start;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-transform: translateX(-100%) rotate(3deg) scale(0.98);
  -ms-transform: translateX(-100%) rotate(3deg) scale(0.98);
  transform: translateX(-100%) rotate(3deg) scale(0.98);
  -webkit-transition: 0.75s all cubic-bezier(1, -0.5, 0.2, 1.4);
  transition: 0.75s all cubic-bezier(1, -0.5, 0.2, 1.4);
}
ul.cards li img {
  object-fit: contain;
  border-radius: 40px;
}

/* ul.cards li:not(.clean) {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  background: -webkit-linear-gradient(top left, #fff, #f0f0ea);
  background: -o-linear-gradient(top left, #fff, #f0f0ea);
  background: -moz-linear-gradient(top left, #fff, #f0f0ea);
  background: linear-gradient(top left, #fff, #f0f0ea);
} */
/* ul.cards li:not(.clean):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-linear-gradient(top left, #fff, transparent 50%);
  background: -o-linear-gradient(top left, #fff, transparent 50%);
  background: -moz-linear-gradient(top left, #fff, transparent 50%);
  background: linear-gradient(top left, #fff, transparent 50%);
} */
/* ul.cards li:not(.clean):after {
  content: attr(title);
  position: absolute;
  box-sizing: border-box;
  padding: 15px;
  width: 100%;
  height: 100px;
  bottom: 0;
  top: -5%;
  left: 0%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
} */
ul li {
  position: relative;
}
/* ul li p {
  position: absolute;
  top: 0%;
  background-color: white;
  width: 100%;
  text-align: center;
} */
ul.cards li.clean {
  padding: 0 40px;
}

ul.cards li.current {
  z-index: 2;
  -webkit-transform: translateX(0) rotate(-3deg);
  -ms-transform: translateX(0) rotate(-3deg);
  transform: translateX(0) rotate(0deg);
}
ul.cards li.current,
ul.cards li.current ~ li {
  opacity: 1;
}
ul.cards li.current + li {
  z-index: 1;
  -webkit-transform: translateX(0) rotate(3deg);
  -ms-transform: translateX(0) rotate(3deg);
  transform: translateX(0) rotate(0deg);
}
ul.cards li.current + li ~ li {
  z-index: 0;
  -webkit-transform: translateX(0) rotate(6deg);
  -ms-transform: translateX(0) rotate(6deg);
  transform: translateX(0) rotate(0deg);
}
ul.cards li i {
  font-style: normal;
  font-size: 96px;
}

ul.cards li:nth-child(4) {
  margin-left: 600px;
}
button.arrow {
  /* position: absolute;
  height: 100%;
  top: 0;
  border: 0; */
  border: none;
  margin-right: auto;
  margin-left: auto;
  padding: 0 10px;
  background: none;
  font-family: "Gochi Hand", sans-serif;
  color: #444;
  font-weight: 900;
  font-size: 2em;
  z-index: 3;
  cursor: pointer;
  outline: none;
}
button.arrow,
button.arrow:after,
button.arrow span {
  -webkit-transition: 0.25s all ease-out;
  transition: 0.25s all ease-out;
}
button.arrow:after {
  display: inline-block;
}
button.arrow.prev {
  left: 0;
}
button.arrow.prev:after {
  content: "< ";
}
button.arrow.next {
  right: 0;
}
button.arrow.next:after {
  content: " >";
}
button.arrow.disabled {
  opacity: 0.2;
  cursor: default;
}
button.arrow:hover:not(.disabled):before,
button.arrow:focus:not(.disabled):before {
  opacity: 1;
}
button.arrow:hover:not(.disabled):after,
button.arrow:focus:not(.disabled):after {
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
@media all and (max-width: 800px) {
  button.arrow {
    font-size: 3em;
  }
  button.arrow.prev:after {
    content: "<";
  }
  button.arrow.next:after {
    content: ">";
  }
}
@media (max-width: 820px) {
  ul.cards {
    height: 40%;
  }
  ul.cards li:nth-child(3) {
    margin-left: 250px;
  }

  ul.cards li:nth-child(2) {
    margin-left: 150px;
  }
}
@media (max-width: 480px) {
  ul.cards {
    height: 22%;
  }
  ul.cards li:nth-child(3) {
    margin-left: 120px;
  }
  .ul.cards li {
    padding: 0%;
  }
  .ul.cards {
    padding: 0%;
  }
  ul.cards li:nth-child(2) {
    margin-left: 80px;
  }
}

/* testmonal 2 start */

.dp-wrap {
  /* margin: 120px auto; */
  position: relative;
  perspective: 1000px;
  height: 100%;
}

.dp-slider {
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
}

.dp-slider div {
  transform-style: preserve-3d;
}

.dp_item {
  display: block;
  position: absolute;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  transition: transform 1.2s;
}

.dp-img img {
  border-left: 1px solid #fff;
}

#dp-slider .dp_item:first-child {
  z-index: 10 !important;
  transform: rotateY(0deg) translateX(0px) !important;
}

.dp_item[data-position="2"] {
  z-index: 9;
  transform: rotateY(0deg) translateX(10%) scale(0.9);
}

.dp_item[data-position="3"] {
  z-index: 8;
  transform: rotateY(0deg) translateX(20%) scale(0.8);
}

.dp_item[data-position="4"] {
  z-index: 7;
  transform: rotateY(0deg) translateX(30%) scale(0.7);
}

#dp-next,
#dp-prev {
  position: absolute;

  top: 50%;
  right: 2%;

  height: 33px;
  width: 33px;
  z-index: 10;
  cursor: pointer;
}

#dp-prev {
  left: 15px;
  transform: rotate(180deg);
}

#dp-dots {
  position: absolute;
  bottom: 25px;
  z-index: 12;
  left: 38%;
  cursor: default;
}

#dp-dots li {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
}

#dp-dots li:hover {
  cursor: pointer;
  background: goldenrod;
  transition: background 0.3s;
}

#dp-dots li.active {
  background: goldenrod;
}

.dp_item {
  width: 85%;
}

.dp-content,
.dp-img {
  text-align: center;
}

.dp_item {
  /* display: flex; */
  align-items: center;
  /* background: #fff; */
  border-radius: 10px;
  overflow: hidden;
  border-top: none;
}

.dp-content {
  padding-left: 100px;
  padding-right: 0;
  display: inline-block;
  width: 100%;
  background-color: white;
  text-align: center;
  padding: 40px;
}

.dp-content h2 {
  color: #41414b;
  font-family: Circular Std Bold;
  font-size: 48px;
  max-width: 460px;
  margin-top: 8px;
  margin-bottom: 0px;
}

.dp-content p {
  color: #74747f;
  width: 75%;
  margin-top: 15px;
  text-align: center;
  /* font-size: 24px; */
}

.dp-content .site-btn {
  margin-top: 15px;
  font-size: 18px;
  padding: 19px 40px;
}
.test_para_one {
  display: block;
}
.test_para_two {
  display: none;
}
.test_para_three {
  display: none;
}
.test_para_four {
  display: none;
}
/* .dp-img:before {
  background: -webkit-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  background: -o-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  background: -moz-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0)
  );
  content: "";
  position: absolute;
  height: 100%;
  width: 25%;
  z-index: 1;
  top: 0;
  pointer-events: none;
  background: -webkit-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.75)
  );
  background: -o-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.75)
  );
  background: -moz-linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.75)
  );
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
} */

.dp-img img {
  object-fit: cover;
  object-position: right;
}

#dp-slider,
.dp-img img {
  height: 738px;
}

#dp-slider .dp_item:hover:not(:first-child) {
  cursor: pointer;
}

.site-btn {
  color: #fff;
  font-size: 18px;
  font-family: "Circular Std Medium";
  background: goldenrod;
  padding: 14px 33px;
  display: inline-block;
  border-radius: 50px;
  position: relative;
  top: -10px;
  text-decoration: none;
}

.site-btn:hover {
  text-decoration: none;
  color: #fff;
}
.test {
  height: 750px;
}
/* test 2 end */
.mob_view {
  display: none;
}
@media (max-width: 1024px) {
  .dp-content p {
    width: 100%;
  }
  .test {
    height: 750px;
  }
}

@media (max-width: 820px) {
  .mission_reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .histroy_reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .lap_view {
    display: none !important;
  }
  .mob_view {
    display: block;
  }
}

@media (max-width: 789px) {
  .dp-content p {
    color: #74747f;
    width: 100%;
  }
  .test {
    height: 500px;
  }
  #dp-slider,
  .dp-img img {
    height: 500px;
  }
}
@media (max-width: 480px) {
  .dp-content {
    padding: 300px;
  }
  #dp-slider,
  .dp-img img {
    height: 270px;
  }
  .test {
    height: 300px;
  }
}
@media (max-width: 320px) {
  #dp-slider,
  .dp-img img {
    height: 220px;
  }
}
